home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen…rary 6 (Reseller Edition) / Apple Ref. & Pres. Lib.v6.0.toast / pc / 3-Presentations / Apple Demos / Training / HyperCard 2.0 Training / •HC 2.0-4 / card_11025.txt < prev    next >
Text File  |  1990-04-06  |  5KB  |  216 lines

  1. -- card: 11025 from stack: in.0-4
  2. -- bmap block id: 17999
  3. -- flags: 0000
  4. -- background id: 7102
  5. -- name: Ex 3.4
  6.  
  7.  
  8. -- part 2 (field)
  9. -- low flags: 01
  10. -- high flags: 0000
  11. -- rect: left=202 top=99 right=269 bottom=437
  12. -- title width / last selected line: 0
  13. -- icon id / first selected line: 0 / 0
  14. -- text alignment: 0
  15. -- font id: 174
  16. -- text size: 12
  17. -- style flags: 0
  18. -- line height: 12
  19. -- part name: 
  20.  
  21.  
  22. -- part 1 (button)
  23. -- low flags: 00
  24. -- high flags: 0005
  25. -- rect: left=186 top=97 right=125 bottom=426
  26. -- title width / last selected line: 0
  27. -- icon id / first selected line: 0 / 0
  28. -- text alignment: 1
  29. -- font id: 0
  30. -- text size: 12
  31. -- style flags: 0
  32. -- line height: 16
  33. -- part name: Windoid
  34. ----- HyperTalk script -----
  35. on mouseUp
  36.   hide fld "feedback"
  37.   set hilite of me to not hilite of me
  38. end mouseUp
  39.  
  40.  
  41.  
  42. -- part 3 (button)
  43. -- low flags: 00
  44. -- high flags: 0005
  45. -- rect: left=186 top=134 right=159 bottom=426
  46. -- title width / last selected line: 0
  47. -- icon id / first selected line: 0 / 0
  48. -- text alignment: 1
  49. -- font id: 0
  50. -- text size: 12
  51. -- style flags: 0
  52. -- line height: 16
  53. -- part name: Windoid
  54. ----- HyperTalk script -----
  55. on mouseUp
  56.   hide fld "feedback"
  57.   set hilite of me to not hilite of me
  58. end mouseUp
  59.  
  60.  
  61.  
  62. -- part 4 (button)
  63. -- low flags: 00
  64. -- high flags: 0005
  65. -- rect: left=186 top=170 right=195 bottom=426
  66. -- title width / last selected line: 0
  67. -- icon id / first selected line: 0 / 0
  68. -- text alignment: 1
  69. -- font id: 0
  70. -- text size: 12
  71. -- style flags: 0
  72. -- line height: 16
  73. -- part name: Windoid
  74. ----- HyperTalk script -----
  75. on mouseUp
  76.   hide fld "feedback"
  77.   set hilite of me to not hilite of me
  78. end mouseUp
  79.  
  80.  
  81.  
  82. -- part 5 (button)
  83. -- low flags: 00
  84. -- high flags: 0005
  85. -- rect: left=186 top=205 right=233 bottom=426
  86. -- title width / last selected line: 0
  87. -- icon id / first selected line: 0 / 0
  88. -- text alignment: 1
  89. -- font id: 0
  90. -- text size: 12
  91. -- style flags: 0
  92. -- line height: 16
  93. -- part name: Windoid
  94. ----- HyperTalk script -----
  95. on mouseUp
  96.   hide fld "feedback"
  97.   set hilite of me to not hilite of me
  98. end mouseUp
  99.  
  100.  
  101.  
  102. -- part 6 (button)
  103. -- low flags: 00
  104. -- high flags: 0005
  105. -- rect: left=185 top=241 right=268 bottom=425
  106. -- title width / last selected line: 0
  107. -- icon id / first selected line: 0 / 0
  108. -- text alignment: 1
  109. -- font id: 0
  110. -- text size: 12
  111. -- style flags: 0
  112. -- line height: 16
  113. -- part name: Windoid
  114. ----- HyperTalk script -----
  115. on mouseUp
  116.   hide fld "feedback"
  117.   set hilite of me to not hilite of me
  118. end mouseUp
  119.  
  120.  
  121.  
  122. -- part 13 (button)
  123. -- low flags: 00
  124. -- high flags: A003
  125. -- rect: left=348 top=321 right=339 bottom=462
  126. -- title width / last selected line: 0
  127. -- icon id / first selected line: 0 / 0
  128. -- text alignment: 1
  129. -- font id: 0
  130. -- text size: 12
  131. -- style flags: 0
  132. -- line height: 16
  133. -- part name: Correct Answer
  134. ----- HyperTalk script -----
  135. -- This handler shows the correct answer.
  136. on mouseUp
  137.   hideFeedback
  138.   dehiliteBtns
  139.   repeat 3
  140.     set hilite of cd btn 1 to false
  141.     set hilite of cd btn 2 to false
  142.     set hilite of cd btn 4 to false
  143.     set hilite of cd btn 5 to false
  144.     wait 25
  145.     set hilite of cd btn 1 to true
  146.     set hilite of cd btn 2 to true
  147.     set hilite of cd btn 4 to true
  148.     set hilite of cd btn 5 to true
  149.     wait 25
  150.   end repeat
  151.   ans 4
  152. end mouseUp
  153.  
  154.  
  155.  
  156. -- part 10 (button)
  157. -- low flags: 00
  158. -- high flags: A003
  159. -- rect: left=400 top=298 right=318 bottom=461
  160. -- title width / last selected line: 0
  161. -- icon id / first selected line: 0 / 0
  162. -- text alignment: 1
  163. -- font id: 0
  164. -- text size: 12
  165. -- style flags: 0
  166. -- line height: 16
  167. -- part name: Done
  168. ----- HyperTalk script -----
  169. -- This handler checks the user's answer.
  170. -- The "ans" and "noAns" handlers are in the stack script.
  171.  
  172. on mouseUp
  173.   put empty into choices
  174.   repeat with i=1 to 5
  175.     if the hilite of btn i is true then
  176.       put i after choices
  177.     end if
  178.   end repeat
  179.   if choices is fld "answer" then ans 1
  180.   else if choices contains 3 then ans 2
  181.   else if length(choices) is 0 then noAns
  182.   else ans 3
  183. end mouseUp
  184.  
  185.  
  186.  
  187. -- part contents for background part 9
  188. ----- text -----
  189. 4 of 7
  190.  
  191. -- part contents for background part 6
  192. ----- text -----
  193. Select from the list below all the options that describe ways Styled Text could be used.
  194.  
  195. -- part contents for card part 2
  196. ----- text -----
  197. Words in a field change to a larger font as they are ‚Äúspoken‚Äù by the computer
  198.  
  199. Different styles are used to improve the look of a card
  200.  
  201. Words in a field change order as they are clicked until a sentence is created
  202.  
  203. Words that are HOT TEXT are in a different style
  204.  
  205. In a field holding a list of names the last names are bolded
  206.  
  207. -- part contents for background part 19
  208. ----- text -----
  209. Correct. Styled text could be used in all these ways, and many more.
  210. No. You have chosen an option that requires Hot Text, but not Styled Text. Try again.
  211. You‚Äôve gotten some of the answers. Look again and see how else Styled Text can be used. Try again.
  212. This is the correct answer. Styled text can be used for aesthetic reasons and to give visual cues, but initiating actions requires Hot Text.
  213.  
  214. -- part contents for background part 21
  215. ----- text -----
  216. 1245